direction 屬性是用來設定文字的方向。可能的值為 'ltr' 與 'rtl'。
如以下範例:
<!DOCTYPE html>
<html>
<head>
<title>CSS direction</title>
<meta charset="utf-8">
<style type="text/css">
#p1{
direction:ltr;
}
#p2{
direction:rtl;
}
</style>
</head>
<body>
<p id="p1">LTR 方向</p>
<p id="p2">RTL 方向</p>
</body>
</html>
成果,LTR 方向會在左邊,RTL 方向在右邊。